home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual Foxpro 6.0 (Ent. Edition) / Vf6ent Extractor.EXE / TOOLS / XSOURCE / XSOURCE.ZIP / vfpsource / wizards / Wzsample / htmlwiz.h < prev    next >
Encoding:
Text File  |  1998-05-01  |  2.0 KB  |  65 lines

  1. *- HTMLWiz.H
  2. *- header file for the sample HTML output wizard
  3. *- 
  4. *- #defines which need to be localized end with "_LOC"
  5. *-
  6.  
  7. *- some standard #defines
  8. #DEFINE    C_CR            CHR(13)            && return
  9. #DEFINE    C_LF            CHR(10)            && linefeed
  10. #DEFINE C_TAB            CHR(9)            && tab
  11.  
  12. *- step descriptions that appear in the wizard popup
  13. *- define one for each page/step in the Wizard
  14. #define STEP1_LOC    "Step 1 - Select Fields"
  15. #define STEP2_LOC    "Step 2 - Sort Records"
  16. #define STEP3_LOC    "Step 3 - Finish"
  17.  
  18. *- text descriptions that appear on each page of the wizard
  19. *- define one for each page/step in the Wizard
  20. #define DESC1_LOC    'Which fields do you want to use on your form?' + C_CR + C_CR + ;
  21.                     'Select a database or the Free Tables, select a table or view, and then select the fields you want.'
  22.  
  23. #DEFINE DESC2_LOC    "How do you want to sort your records?" + C_CR + C_CR + ;
  24.                     "Select up to three fields or select one index tag to sort the records by."
  25.  
  26. #DEFINE DESC3_LOC    ""                && empty--finish screen
  27.  
  28.  
  29. *- Data types
  30. #DEFINE DT_INTEGER     'I'
  31. #DEFINE DT_NUM       'N'
  32. #DEFINE DT_FLOAT     'F'
  33. #DEFINE DT_LOGIC     'L'
  34. #IFNDEF DT_MEMO
  35.     #DEFINE DT_MEMO  'M'
  36. #ENDIF
  37. #DEFINE DT_GEN       'G'
  38. #DEFINE DT_CHAR      'C'
  39. #DEFINE DT_DATE      'D'
  40. #DEFINE DT_DATETIME    'T'
  41. #DEFINE DT_CURRENCY    'Y'
  42. #DEFINE DT_DOUBLE    'B'
  43.  
  44. *- Screen BMP files
  45. *- define one for each page/step in the Wizard
  46. #define BMPFILE1    "opentabl.bmp"
  47. #define BMPFILE2    "newsort.bmp"
  48. #define BMPFILE3    ""                && empty -- finish screen
  49.  
  50. *- Context sensitive Help IDs
  51. #define FORM_HELP_ID1        0
  52. #define FORM_HELP_ID2        0
  53. #define FORM_HELP_ID3        0
  54.  
  55. *- other strings, put here to simplify localization
  56. #DEFINE GENHTML_LOC        ["This HTML Page was generated by the Visual Foxpro HTML Wizard"]
  57. #DEFINE GENDATE_LOC        "This page was generated on "
  58. #DEFINE C_NOBROWSER_LOC    "Unable to start browser. This wizard requires that " + ;
  59.                         "Microsoft Internet Explorer 3.0 be installed on this machine."
  60.                         
  61. #DEFINE    C_YES_LOC        "Yes"
  62. #DEFINE C_NO_LOC        "No"
  63.  
  64. #DEFINE I_SHOW_MODAL        1
  65. #DEFINE I_SHOW_MODELESS        2